home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
djgpp
/
include
/
system.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-08-11
|
397 b
|
22 lines
#ifndef _SYSTEM_H_
#define _SYSTEM_H_
#ifndef NO_PROTO
#ifdef __cplusplus /* for C++ V2.0 */
extern "C" { /* do not leave open across includes */
#endif /* __cplusplus */
int system(const char *);
#ifdef __cplusplus /* for C++ V2.0 */
}
#endif /* __cplusplus */
#else
int system();
#endif
#endif